home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / pcblup12.arc / PCBLUP.DOC < prev    next >
Text File  |  1989-05-15  |  3KB  |  98 lines

  1.  
  2. LocalUpload - This is a PCBoard sysop utility that allows the sysop
  3.               to enter local files as "uploads" into the PCBoard
  4.               files.   To be used from DOS with PCBoard 14.0
  5.  
  6. Written by: S.H.Smith, 26-apr-87 (rev. 05-Sep-88)
  7.  
  8. This program is provided courtesy of:
  9.         The Tool Shop
  10.         Phoenix, Az
  11.         (602) 279-2673
  12.  
  13.  
  14. Usage is:
  15.    PCBLUP configfile  file ... file       (wildcards are okay)
  16.  
  17.  
  18. I normally call PCBLUP through batch files.  Here is an example:
  19.  
  20.    @echo off
  21.    rem.
  22.    rem. for uploading into the "sysops conference" upload directory.
  23.    rem. make similar batch files and config files for uploading into
  24.    rem. your other conferences.
  25.    rem.
  26.    d:
  27.    cd \zdl                                   <- files come from here
  28.    PCBLUP c:\pcb\lupsysop.cnf *.arc        <- upload with specified config
  29.    touch *.arc                               <- change dates to today
  30.    mv *.arc \upload                          <- files go here
  31.  
  32.  
  33.  
  34.  
  35. Configuration file
  36. ------------------
  37.  
  38. You might need to customize the configuration file, PCBLUP.CNF for
  39. your system.   I recommend you make a config file for each conference
  40. upload directory.
  41.  
  42.    ;
  43.    ; Configuration file for PCB Local Uploader, PCBLUP.CNF
  44.    ;
  45.    ; Protocol code to place in log (C=crc, Y=ymodem, L=local, etc)
  46.    L
  47.    ;
  48.    ; Transfer speed "CPS" figure for log file
  49.    240
  50.    ;
  51.    ; Full path of caller log
  52.    c:\pcb\main\caller
  53.    ;
  54.    ; Full path of upload directory file
  55.    c:\pcb\main\dir10
  56.    ;
  57.    ; end of PCBLUP.CNF
  58.    ;
  59.  
  60.  
  61.  
  62.  
  63. Revision history
  64. ----------------
  65.  
  66.  *    10-May-87 1.00 Created from PCB ProDOOR.
  67.  *                   Released as PCBLUP10.ARC.
  68.  *
  69.  *    25-Oct-87 1.10 Updated for PCB 12.0.  Added command parameter for
  70.  *                   config file (allowing multi-conference uploading).
  71.  *                   Released as PCBLUP11.ARC.
  72.  *
  73.  *    05-Sep-88 1.2  Updated for PCB 14.0.  Added multi-line descriptions.
  74.  *                   Converted sources to TPAS 4.0 format.
  75.  *                   Recompilation requires: CINPUT.TPU, MDOSIO.TPU,
  76.  *                   MINICRT.TPU, OPENSHAR.TPU, and TOOLS.TPU from
  77.  *                   PROKIT27.ARC (or later).
  78.  
  79.  
  80.  
  81.  
  82. Disclaimer
  83. ----------
  84.  
  85. This software is completely FREE.   I ask only for your comments, 
  86. suggestions and bug reports.   If you modify this program, I would 
  87. appreciate a copy of the new source code.   Please don't delete my name 
  88. from the program. 
  89.  
  90. I cannot be responsible for any damages resulting from the use or mis-
  91. use of this program! 
  92.  
  93. If you have any questions, bugs, or suggestions, please contact me at 
  94. The Tool Shop,  (602) 279-2673. 
  95.  
  96. Enjoy!     Samuel H. Smith
  97.  
  98.